home *** CD-ROM | disk | FTP | other *** search
/ U.S. Robotics Connections 2 / US Robotics Connections.iso / mac / SourceMc / PalmMC.DIR / 00287.ls < prev    next >
Encoding:
Text File  |  1996-02-29  |  344 b   |  20 lines

  1. global gSound, gColorDepth
  2.  
  3. on startMovie
  4.   startTimer()
  5.   set the centerStage to 1
  6.   updateStage()
  7.   if the machineType = 256 then
  8.     nothing()
  9.   else
  10.     set gColorDepth to the colorDepth
  11.     set the colorDepth to 8
  12.   end if
  13.   set the floatPrecision to 8
  14.   set gSound to "Click.Aif"
  15. end
  16.  
  17. on stopMovie
  18.   set the colorDepth to gColorDepth
  19. end
  20.